/* Contenedor del módulo (no afecta al resto) */
#cat-box{
  width:100%;
  height:100%;
  box-sizing:border-box;
}

/* El scroll va aquí */
#cat-box .cat-box__tablewrap{
  height: 220px;            /* AJUSTA: 180-260 según tu panel */
  overflow:auto;
  border:1px solid #e6ebf2;
  border-radius:10px;
  background:#fff;
}

/* Tabla */
#cat-box .cat-table{
  width:100%;
  border-collapse:collapse;
  font-family:"Segoe UI",system-ui,-apple-system,sans-serif;
  font-size:13px;
}

#cat-box th,
#cat-box td{
  padding:10px 12px;
  border-bottom:1px solid #eef2f7;
  text-align:left;
}

#cat-box th{
  position: sticky;
  top: 0;
  background:#fbfcfe;
  font-size:12px;
  color:#64748b;
  text-transform:uppercase;
  letter-spacing:.06em;
}

#cat-box .cat-tag{
  font-family:ui-monospace,Consolas,monospace;
  font-weight:600;
  color:#0b3b8c;
  white-space:nowrap;
}

#cat-box tr:hover td{
  background:#f8fafc;
}

#cat-box .cat-empty{
  padding:12px 14px;
  border:1px solid #fee2e2;
  background:#fff7f7;
  border-radius:10px;
  color:#b91c1c;
  font-family:"Segoe UI",system-ui,-apple-system,sans-serif;
  font-size:13px;
}
